home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Cream of the Crop 1
/
Cream of the Crop 1.iso
/
UTILITY
/
XSPAWN.ARJ
/
XSPWNLPE.C
< prev
next >
Wrap
Text File
|
1991-05-04
|
596b
|
23 lines
/*
* XSPAWN
* Version 1.33
* (C) Copyright 1990 Whitney Software, Inc.
* All Rights Reserved
*/
#include <stdio.h>
#include "xspawnp.h"
int xspawnlpe( modeflag, path, arglist )
int modeflag; /* execution mode for parent process */
char *path; /* file to be executed */
char *arglist; /* list of pointers to arguments */
{
register char **p;
for ( p = &arglist; *p; p++ )
;
return( xspawnvpe( modeflag, path, &arglist, ( char ** )*++p ));
}